home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / disk / misc / TransADF.lha / TransADF / Source / read_disk.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-05  |  1.1 KB  |  36 lines

  1. /* read_disk.h - Header file for read_disk.c
  2. ** Copyright (C) 1997,1998 Karl J. Ots
  3. ** 
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU General Public License as published by
  6. ** the Free Software Foundation; either version 2 of the License, or
  7. ** (at your option) any later version.
  8. ** 
  9. ** This program is distributed in the hope that it will be useful,
  10. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ** GNU General Public License for more details.
  13. ** 
  14. ** You should have received a copy of the GNU General Public License
  15. ** along with this program; if not, write to the Free Software
  16. ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17. */
  18.  
  19. #ifndef TRANDADF_READ_DISK_H
  20. #define TRANDADF_READ_DISK_H
  21.  
  22.  
  23. #ifndef TRANSADF_MAIN_H
  24. #include "main.h"
  25. #endif /* TRANSADF_MAIN_H */
  26.  
  27.  
  28. /*---------------------*/
  29. /* Function prototypes */
  30. /*---------------------*/
  31.  
  32. void readDisk (struct ADF_Packet *adfPkt);
  33.  
  34.  
  35. #endif /* TRANDADF_READ_DISK_H */
  36.